@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth; }

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem; }

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333696; }

.logo img {
  height: 100px;
  width: auto;
  max-width: 400px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem; }

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative; }

.nav-links a:hover {
  color: #333696; }

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #333696;
  transition: width 0.3s ease; }

.nav-links a:hover::after {
  width: 100%; }

.support-link {
  background: linear-gradient(135deg, #ff6b6b, #DC4405) !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  margin-left: 1rem; }

.support-link:hover {
  background: linear-gradient(135deg, #ee5a52, #DC4405) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); }

.support-link::after {
  display: none !important; }

.section {
  padding: 140px 0 50px;
  display: flex;
  align-items: center; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; }

.hero {
  background: linear-gradient(135deg, #667eea 0%, #333696 100%);
  color: white;
  text-align: center; }

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 300; }

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8; }

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 3rem;
  font-weight: 300; }

.hero-subtitle span {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.9; }

.hero-subtitle a {
  color: #fff;
  text-decoration: underline;
  margin-left: 1rem; }

.services {
  background: #f8f9fa; }

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #333696;
  font-weight: 300; }

.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem; }

.modules-section {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }

.modules-section h3 {
  color: #333696;
  margin-bottom: 1rem;
  font-size: 1.4rem; }

.modules-section ul {
  list-style: none;
  padding-left: 0; }

.modules-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem; }

.modules-section li:before {
  content: '•';
  color: #333696;
  position: absolute;
  left: 0; }

.resources-section {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }

.resources-section h3 {
  color: #333696;
  margin-bottom: 1rem;
  font-size: 1.4rem; }

.resources-section li {
  margin-left: 1.5rem; }

.resources-section a {
  color: #333696;
  text-decoration: none;
  transition: color 0.3s ease; }

.resources-section a:hover {
  color: #1a4080;
  text-decoration: underline; }

.about {
  background: white; }

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #333696;
  font-weight: 300; }

.about-content {
  max-width: 800px;
  margin: 0 auto; }

.about-content h3 {
  color: #333696;
  margin: 2rem 0 1rem;
  font-size: 1.4rem; }

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8; }

.about-content a {
  color: #333696;
  text-decoration: none;
  transition: color 0.3s ease; }

.about-content a:hover {
  color: #1a4080;
  text-decoration: underline; }

.contact {
  background: #f8f9fa;
  padding: 4rem 0; }

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #333696;
  font-weight: 300; }

/* Updated container to support two-column layout */
.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 3rem;
  flex: 1;
  align-items: stretch;
  /* This makes both containers match height */ }

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: none;
  /* Remove the previous max-width constraint */ }

.contact-info h3 {
  color: #333696;
  margin-bottom: 1rem; }

.contact-info a {
  color: #333696;
  text-decoration: none; }

.contact-info a:hover {
  text-decoration: underline; }

/* Map container styles */
.map-container {
  flex: 1;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 400px;
  /* Minimum height, but will grow with content */ }

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none; }

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2rem 0; }

/* Footer styles */
.footer {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 2rem 0;
  margin-top: auto; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem; }

.footer-logo img {
  height: 40px;
  width: auto; }

.footer-logo-placeholder {
  height: 40px;
  width: 40px;
  background-color: #667eea;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem; }

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333; }

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center; }

.footer-copyright a {
  color: #333696;
  text-decoration: none;
  transition: color 0.3s ease; }

.footer-copyright a:hover {
  color: #1a4080;
  text-decoration: underline; }

.footer-copyright a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #667eea;
  transition: width 0.3s ease; }

.footer-copyright a:hover:after {
  width: 100%; }

.footer-copyright {
  color: #888;
  font-size: 0.85rem; }

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem; }

  .hero h1 {
    font-size: 2.5rem; }

  .services-grid {
    grid-template-columns: 1fr; }

  .nav-container {
    padding: 0 1rem; }

  .container {
    padding: 0 1rem; } }
@media (max-width: 480px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem; }

  .nav-links a {
    font-size: 0.9rem; } }
